From: Michael Albinus Date: Sat, 15 Aug 2009 18:30:54 +0000 (+0000) Subject: * keyboard.c (readable_events): Call xd_pending_messages. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~11091 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=270cf2fae4901fb3bf0e2604a5a2aa169eabbbbc;p=emacs.git * keyboard.c (readable_events): Call xd_pending_messages. --- diff --git a/src/keyboard.c b/src/keyboard.c index a49c6465f41..9512e4ac979 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -3660,6 +3660,12 @@ static int readable_events (flags) int flags; { +#ifdef HAVE_DBUS + /* Check whether a D-Bus message has arrived. */ + if (xd_pending_messages () > 0) + return 1; +#endif /* HAVE_DBUS */ + if (flags & READABLE_EVENTS_DO_TIMERS_NOW) timer_check (1); @@ -6982,7 +6988,7 @@ gobble_input (expected) int expected; { #ifdef HAVE_DBUS - /* Check whether a D-Bus message has arrived. */ + /* Read D-Bus messages. */ xd_read_queued_messages (); #endif /* HAVE_DBUS */ @@ -7338,7 +7344,7 @@ tty_read_avail_input (struct terminal *terminal, { struct coding_system *coding = TERMINAL_KEYBOARD_CODING (terminal); int from; - + /* Decode the key sequence except for those with meta modifiers. */ for (i = from = 0; ; i++)